home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / htsserver.h < prev    next >
Text File  |  2006-04-09  |  8KB  |  307 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Mini-server                                            */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. // Fichier intercepteur d'URL .h
  38.  
  39. #ifndef HTS_SERVER_DEFH
  40. #define HTS_SERVER_DEFH 
  41.  
  42. #include "htsnet.h"
  43.  
  44. /* String */
  45. #include "htsstrings.h"
  46.  
  47.  
  48. // Fonctions
  49. void socinput(T_SOC soc,char* s,int max);
  50. T_SOC smallserver_init_std(int* port_prox,char* adr_prox,int defaultPort);
  51. T_SOC smallserver_init(int* port,char* adr);
  52. int smallserver(T_SOC soc,char* url,char* method,char* data, char* path);
  53.  
  54. #define CATCH_RESPONSE \
  55.   "HTTP/1.0 200 OK\r\n"\
  56.   "Content-type: text/html\r\n"\
  57.   "\r\n"\
  58.   "<!-- Generated by HTTrack Website Copier -->\r\n"\
  59.   "<HTML><HEAD>\r\n"\
  60.   "<TITLE>Link caught!</TITLE>\r\n"\
  61.   "<SCRIPT LANGUAGE=\"Javascript\">\r\n"\
  62.   "<!--\r\n"\
  63.   "function back() {\r\n"\
  64.   "  history.go(-1);\r\n"\
  65.   "}\r\n"\
  66.   "// -->\r\n"\
  67.   "</SCRIPT>\r\n"\
  68.   "</HEAD>\r\n"\
  69.   "<BODY>\r\n"\
  70.   "<H2>Link captured into HTTrack Website Copier, you can now restore your proxy preferences!</H2>\r\n"\
  71.   "<BR><BR>\r\n"\
  72.   "<H3><A HREF=\"javascript:back();\">Clic here to go back</A></H3>\r\n"\
  73.   "</BODY></HTML>"\
  74.   "<!-- Generated by HTTrack Website Copier -->\r\n"\
  75.   "\r\n"\
  76.  
  77. extern int NewLangStrSz;
  78. extern inthash NewLangStr;
  79. extern int NewLangStrKeysSz;
  80. extern inthash NewLangStrKeys;
  81. extern int NewLangListSz;
  82. extern inthash NewLangList;
  83.  
  84. /* Spaces: CR,LF,TAB,FF */
  85. #define  is_space(c)      ( ((c)==' ') || ((c)=='\"') || ((c)==10) || ((c)==13) || ((c)==9) || ((c)==12) || ((c)==11) || ((c)=='\'') )
  86. #define  is_realspace(c)  ( ((c)==' ')                || ((c)==10) || ((c)==13) || ((c)==9) || ((c)==12) || ((c)==11)                )
  87. #define  is_taborspace(c) ( ((c)==' ')                                          || ((c)==9)                             )
  88. #define  is_quote(c)      (               ((c)=='\"')                                                    || ((c)=='\'') )
  89. #define  is_retorsep(c)   (                              ((c)==10) || ((c)==13) || ((c)==9)                                          )
  90.  
  91. extern int smallserver_setkey(char* key, char* value);
  92. extern int smallserver_setkeyint(char* key, LLint value);
  93. extern int smallserver_setkeyarr(char* key, int id, char* key2, char* value);
  94.  
  95.  
  96. /* Language files */
  97. static int htslang_load(char* limit_to, char* apppath);
  98. static void conv_printf(char* from,char* to);
  99. static void LANG_DELETE(void);
  100. static void LANG_INIT(char* path);
  101. static int LANG_T(char* path, int l);
  102. static int QLANG_T(int l);
  103. static char* LANGSEL(char* name);
  104. static char* LANGINTKEY(char* name);
  105. static int LANG_SEARCH(char* path, char* iso);
  106. static int LANG_LIST(char* path, char* buffer);
  107.  
  108. int htslang_init(void);
  109. int htslang_uninit(void);
  110.  
  111. /* Static definitions */
  112.  
  113. static char* gethomedir(void);
  114. static int linput_cpp(FILE* fp,char* s,int max);
  115. static int linput_trim(FILE* fp,char* s,int max);
  116. static char* concat(const char* a,const char* b);
  117. static int fexist(char* s);
  118. static int linput(FILE* fp,char* s,int max);
  119.  
  120. static int linputsoc(T_SOC soc, char* s, int max) {
  121.   int c;
  122.   int j=0;
  123.   do {
  124.     unsigned char ch;
  125.     if (recv(soc, &ch, 1, 0) == 1) {
  126.       c = ch;
  127.     } else {
  128.       c = EOF;
  129.     }
  130.     if (c!=EOF) {
  131.       switch(c) {
  132.         case 13: break;  // sauter CR
  133.         case 10: c=-1; break;
  134.         case 9: case 12: break;  // sauter ces caractΦres
  135.         default: s[j++]=(char) c; break;
  136.       }
  137.     }
  138.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  139.   s[j]='\0';
  140.   return j;
  141. }
  142.  
  143. static int check_readinput_t(T_SOC soc, int timeout) {
  144.   if (soc != INVALID_SOCKET) {
  145.     fd_set fds;           // poll structures
  146.     struct timeval tv;          // structure for select
  147.     FD_ZERO(&fds);
  148.     FD_SET(soc,&fds);           
  149.     tv.tv_sec=timeout;
  150.     tv.tv_usec=0;
  151.     select(soc + 1,&fds,NULL,NULL,&tv);
  152.     if (FD_ISSET(soc,&fds))
  153.       return 1;
  154.     else
  155.       return 0;
  156.   } else
  157.     return 0;
  158. }
  159.  
  160. static int linputsoc_t(T_SOC soc, char* s, int max, int timeout) {
  161.   if (check_readinput_t(soc, timeout)) {
  162.     return linputsoc(soc, s, max);
  163.   }
  164.   return -1;
  165. }
  166.  
  167. static char* gethomedir(void) {
  168.   char* home = getenv( "HOME" );
  169.   if (home)
  170.     return home;
  171.   else
  172.     return ".";
  173. }
  174. static int linput_cpp(FILE* fp,char* s,int max) {
  175.   int rlen=0;
  176.   s[0]='\0';
  177.   do {
  178.     int ret;
  179.     if (rlen>0)
  180.     if (s[rlen-1]=='\\')
  181.       s[--rlen]='\0';      // couper \ final
  182.     // lire ligne
  183.     ret=linput_trim(fp,s+rlen,max-rlen);
  184.     if (ret>0)
  185.       rlen+=ret;
  186.   } while((s[max(rlen-1,0)]=='\\') && (rlen<max));
  187.   return rlen;
  188. }
  189. // copy of concat
  190. typedef struct concat_strc {
  191.   char buff[16][HTS_URLMAXSIZE*2*2];
  192.   int rol;
  193. } concat_strc;
  194. static char* concat(const char* a,const char* b) {
  195.   static concat_strc* strc = NULL;
  196.   if (strc == NULL) {
  197.     strc = (concat_strc*) calloc(16, sizeof(concat_strc));
  198.   }
  199.   strc->rol=((strc->rol+1)%16);    // roving pointer
  200.   strcpybuff(strc->buff[strc->rol],a);
  201.   if (b) strcatbuff(strc->buff[strc->rol],b);
  202.   return strc->buff[strc->rol];
  203. }
  204.  
  205. static int fexist(char* s) {
  206.   struct stat st;
  207.   memset(&st, 0, sizeof(st));
  208.   if (stat(s, &st) == 0) {
  209.     if (S_ISREG(st.st_mode)) {
  210.       return 1;
  211.     }
  212.   }
  213.   return 0;
  214. static int linput(FILE* fp,char* s,int max) {
  215.   int c;
  216.   int j=0;
  217.   do {
  218.     c=fgetc(fp);
  219.     if (c!=EOF) {
  220.       switch(c) {
  221.         case 13: break;  // sauter CR
  222.         case 10: c=-1; break;
  223.         case 0: case 9: case 12: break;  // sauter ces caractΦres
  224.         default: s[j++]=(char) c; break;
  225.       }
  226.     }
  227.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  228.   s[j]='\0';
  229.   return j;
  230. }
  231. static int linput_trim(FILE* fp,char* s,int max) {
  232.   int rlen=0;
  233.   char* ls=(char*) malloct(max+2);
  234.   s[0]='\0';
  235.   if (ls) {
  236.     char* a;
  237.     // lire ligne
  238.     rlen=linput(fp,ls,max);
  239.     if (rlen) {
  240.       // sauter espaces et tabs en fin
  241.       while( (rlen>0) && is_realspace(ls[max(rlen-1,0)]) )
  242.         ls[--rlen]='\0';
  243.       // sauter espaces en dΘbut
  244.       a=ls;
  245.       while((rlen>0) && ((*a==' ') || (*a=='\t'))) {
  246.         a++;
  247.         rlen--;
  248.       }
  249.       if (rlen>0) {
  250.         memcpy(s,a,rlen);      // can copy \0 chars
  251.         s[rlen]='\0';
  252.       }
  253.     }
  254.     //
  255.     freet(ls);
  256.   }
  257.   return rlen;
  258. }
  259.  
  260. static void unescapeini(char* s, String* tempo) {
  261.   int i;
  262.   char lastc=0;
  263.   for (i=0;i<(int) strlen(s);i++) {
  264.     if (s[i]=='%' && s[i+1]=='%') {
  265.       i++;
  266.       StringAddchar(*tempo, lastc = '%');
  267.     } else if (s[i]=='%') {
  268.       char hc;
  269.       i++;
  270.       hc = (char) ehex(s+i);
  271.       if (!is_retorsep(hc) || !is_retorsep(lastc)) {
  272.         StringAddchar(*tempo, lastc = (char) hc);
  273.       }
  274.       i++;    // sauter 2 caractΦres finalement
  275.     }
  276.     else
  277.       StringAddchar(*tempo, lastc = s[i]);
  278.   }
  279. }
  280.  
  281. #ifndef _WIN32
  282. #define fconv(a) (a)
  283. #define fconcat(a,b) concat(a,b)
  284. #endif
  285.  
  286. #ifdef _WIN32
  287. static char* __fconv(char* a) {
  288.   int i;
  289.   for(i=0;i<(int) strlen(a);i++)
  290.     if (a[i]=='/')  // convertir
  291.       a[i]='\\';
  292.   return a;
  293. }
  294. static char* fconcat(char* a,char* b) {
  295.   return __fconv(concat(a,b));
  296. }
  297. static char* fconv(char* a) {
  298.   return __fconv(concat(a,""));
  299. }
  300. #endif
  301.  
  302. #endif
  303.  
  304.  
  305.  
  306.